home *** CD-ROM | disk | FTP | other *** search
/ IRIX Installation Tools & Overlays 2002 November / SGI IRIX Installation Tools & Overlays 2002 November - Disc 4.iso / dist / motif21_dev.idb / usr / Motif-2.1 / include / Xm / PushB.h.z / PushB.h
C/C++ Source or Header  |  2002-10-15  |  2KB  |  64 lines

  1. /* 
  2.  *  @OSF_COPYRIGHT@
  3.  *  COPYRIGHT NOTICE
  4.  *  Copyright (c) 1990, 1991, 1992, 1993 Open Software Foundation, Inc.
  5.  *  ALL RIGHTS RESERVED (MOTIF). See the file named COPYRIGHT.MOTIF for
  6.  *  the full copyright text.
  7. */ 
  8. /* 
  9.  * HISTORY
  10. */ 
  11. /*   $XConsortium: PushB.h /main/12 1995/07/13 17:43:06 drk $ */
  12. /*
  13. *  (c) Copyright 1989, DIGITAL EQUIPMENT CORPORATION, MAYNARD, MASS. */
  14. /*
  15. *  (c) Copyright 1987, 1988, 1989, 1990, 1991, 1992 HEWLETT-PACKARD COMPANY */
  16. /*
  17. *  (c) Copyright 1988 MASSACHUSETTS INSTITUTE OF TECHNOLOGY  */
  18. /*
  19. *  (c) Copyright 1988 MICROSOFT CORPORATION */
  20. /***********************************************************************
  21.  *
  22.  * PushButton Widget
  23.  *
  24.  ***********************************************************************/
  25.  
  26. #ifndef _XmPButton_h
  27. #define _XmPButton_h
  28.  
  29. #include <Xm/Xm.h>
  30.  
  31. #ifdef __cplusplus
  32. extern "C" {
  33. #endif
  34.  
  35. #ifndef XmIsPushButton
  36. #define XmIsPushButton(w) XtIsSubclass(w, xmPushButtonWidgetClass)
  37. #endif /* XmIsPushButton */
  38.  
  39. /* PushButton Widget */
  40.  
  41. externalref WidgetClass xmPushButtonWidgetClass;
  42.  
  43. typedef struct _XmPushButtonClassRec *XmPushButtonWidgetClass;
  44. typedef struct _XmPushButtonRec      *XmPushButtonWidget;
  45.  
  46.  
  47. /********    Public Function Declarations    ********/
  48.  
  49. extern Widget XmCreatePushButton( 
  50.                         Widget parent,
  51.                         char *name,
  52.                         ArgList arglist,
  53.                         Cardinal argcount) ;
  54.  
  55. /********    End Public Function Declarations    ********/
  56.  
  57.  
  58. #ifdef __cplusplus
  59. }  /* Close scope of 'extern "C"' declaration which encloses file. */
  60. #endif
  61.  
  62. #endif /* _XmPButton_h */
  63. /* DON'T ADD ANYTHING AFTER THIS #endif */
  64.